-
Notifications
You must be signed in to change notification settings - Fork 292
fix(tests): resolve 3 skipped model directory tests (Section 3/5) #632
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for vllm-semantic-router ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
👥 vLLM Semantic Team NotificationThe following members have been identified for the changed files in this PR and have been automatically assigned: 📁
|
be4e510 to
ace578b
Compare
|
@yuluo-yx PTAL, thanks |
368f71b to
608c921
Compare
.github/workflows/test-and-build.yml
Outdated
| path: | | ||
| models/ | ||
| key: ${{ runner.os }}-models-v1-${{ hashFiles('tools/make/models.mk') }} | ||
| key: ${{ runner.os }}-models-v2-${{ hashFiles('tools/make/models.mk') }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is v2 being used here? Is it really necessary for us to upgrade to v2? The model files are very large and will occupy a lot of cache space on GitHub.
| func TestAutoDiscoverModels_RealModels(t *testing.T) { | ||
| // Test with real models directory | ||
| modelsDir := "../../../../../models" | ||
| modelsDir := "../../../../models" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we define it as a constant? This is used in many places.
608c921 to
33a0857
Compare
Signed-off-by: Yehudit Kerido <[email protected]>
33a0857 to
d527146
Compare

Tests TestAutoDiscoverModels_RealModels, TestAutoInitializeUnifiedClassifier,
and TestUnifiedClassifier_Integration now pass.
Fix Partially issue #573